home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / rammap.arc / RAMMAP.DOC < prev    next >
Text File  |  1991-10-07  |  8KB  |  233 lines

  1. Computer Tyme RamMap * Copyright 1990 by Marc Perkel
  2. All Rights Reserved * Version 1.2 * Release Date: 11-29-90
  3.  
  4. Computer Tyme * 411 North Sherman, Suite 300 * Springfield Mo. 65802
  5. (800) 548-5353 Sales * (417) 866-1222 Voice * (417) 866-1665 Data
  6.  
  7. RamMap has several functions. It displays what's in memory, and it
  8. is able to free up some wasted memory blocks. It can also return an
  9. error level code to a batch file to indicate what TSRs are in memory.
  10.  
  11. Usage:
  12.    RAMMAP
  13.    RAMMAP Free
  14.    RAMMAP InMem SK.COM
  15.    RAMMAP InMem MARX.BAT
  16.  
  17. When loading TSRs, each program has it's own environment space.
  18. Generally, this is wasted memory. Running RAMMAP FREE after each
  19. TSR load can recover this memory. It won't gain you a lot, but
  20. in some situations, every byte counts!
  21.  
  22. The command InMem tests to see what TSRs are loaded in memory. If the
  23. program is found, it returns errorlevel 1. Otherwise it returns errorlevel 0.
  24. Besides finding TSRs, InMem will also find BATCH files that are running.
  25.  
  26. This is a shareware program. If you use it you must pay for it.
  27. Pricing is as follows:
  28.  
  29.    1         -  $10
  30.    10        -  $25
  31.    100       - $100
  32.    Unlimited - $250 call for details
  33.  
  34. This program is included free with other Computer Tyme Software
  35. such as MarxMenu and the DOS ToolBox.
  36.  
  37.       Information and order forms:
  38.  
  39.       ======================================================
  40.  
  41.       The Computer Tyme Dos ToolBox... Makes DOS easier for the novice,
  42.       more powerful for the professional.
  43.  
  44.       DIRECTORY MASTER is a powerful hard disk managment utility. It
  45.       brings up your hard disk files and allows you to mark selected
  46.       files so you can copy them, delete them, or move them. It also
  47.       allows you to rename files, change dates, and change attributes.
  48.       You can also run programs or set up your function keys to run
  49.       programs on selected files.
  50.  
  51.       DOLIST makes being at DOS easier. It gives you full line editing,
  52.       like a word processor, for your commands. It also stores commands
  53.       so that you can re-execute them. It remembers subdirectories and
  54.       allows you to go back to them by pressing the TAB key. It offers
  55.       programmable function keys, DOS extensions, multiple execution,
  56.       and many more features you have got to have.
  57.  
  58.       PICK DIRECTORY allows you to move through the directory system by
  59.       displaying a graphic tree and letting you use your arrow keys to
  60.       move around. It also lets you create, delete, rename, and hide
  61.       directories.
  62.  
  63.       TEDIT (from SemWare) is a powerful, easy to use full screen
  64.       editor.
  65.  
  66.       MARXTSR is a set of memory and TSR management utilities that let
  67.       you load and unload TSRs (Terminate and stay resident programs)
  68.       from memory. Utilities to list menory allocation and turn TSR's
  69.       on and off.
  70.  
  71.       And many more ... Also includes is D, a fancy directory listing
  72.       program; WHEREIS, for finding stuff on you hard disk, SORT, MOVE,
  73.       FIND, FREE, PIPEDIR, VERSION, and many more.
  74.  
  75.       The Dos Toolbox sells for $59.95.
  76.  
  77.       ======================================================
  78.  
  79.       We are also selling QEdit from Semware. QEdit is a professional
  80.       editor from Semware. TEdit is a mini version of QEdit. If you
  81.       like TEdit, You'll love QEdit.
  82.  
  83.       1-800-548-5353 Order Line
  84.       1-417-866-1222 Voice Line
  85.       1-417-866-1665 BBS Data line * 1200/2400 * 8N1 * ANSI or VT100
  86.  
  87.       
  88.       MARXMENU:
  89.  
  90.       For the menu user who is interested in POWER!
  91.  
  92.       MarxMenu version 1.99 is a menu system that uses NO RAM. MarxMenu
  93.       is compatible with all networks and contains a powerful menu
  94.       language. This language gives you complete screen control as well
  95.       as conditional menus. Math and string functions as well as
  96.       multidimensional arrays are supported. MarxMenu can read
  97.       environment variables, ports, ram locations, time, dates, the
  98.       contents of text files, ect. and make decisions on them.
  99.  
  100.       Screen control includes multi-layer exploding windows with
  101.       unlimited number of selections and unlimited windows. 43/50 line
  102.       ega and vga modes are supported. MarxMenu contains a screen
  103.       blanker, password security on anything, keyboard lockout.
  104.       MarxMenu can run programs while staying resident and read the dos
  105.       errorlevel codes they return or marxmenu can return custom
  106.       errorlevel codes to a calling program or batch file. MarxMenu can
  107.       view text files in a window, read text files into an array and
  108.       let you choose a line from that array in a window. MarxMenu can
  109.       write string arrays to text files.
  110.  
  111.       This menu system is targeted at the user whose primary interest
  112.       is POWER! Here is a simple sample of what MarxMenu script looks
  113.       like:
  114.  
  115.       ==========================================
  116.  
  117.       ;This menu is a sample of a simple menu.
  118.       ;To run this menu type 'MARX SAMPLE'
  119.  
  120.       TextColor Yellow Red
  121.       ClearScreen
  122.       BoxBorderColor Green Blue
  123.       BoxInsideColor Yellow Blue
  124.       DrawBox 25 7 32 13
  125.       WriteCenter '* Sample Menu *'
  126.       Writeln
  127.       Writeln
  128.       Writeln '   A - Directory'
  129.       Writeln '   B - Wide Directory'
  130.       Writeln '   C - Run ChkDsk'
  131.       Writeln '   D - Type Menu to Screen'
  132.       Writeln '   E - Edit This Menu'
  133.       Writeln '   F - Drop to Dos'
  134.       Writeln ' Esc - Exit'
  135.       Writeln
  136.       Write ' Select: '
  137.  
  138.       OnKey 'A'
  139.          DIR
  140.          Pause   ;Lets you see the directory before screen clears
  141.  
  142.       Onkey 'B'
  143.          DIR/W
  144.          Pause
  145.  
  146.       OnKey 'C'
  147.          CHKDSK
  148.          Pause
  149.  
  150.       OnKey 'D'
  151.          TYPE SAMPLE.MNU|MORE
  152.          Pause
  153.  
  154.       OnKey 'E'
  155.          TEDIT SAMPLE.MNU
  156.  
  157.       OnKey 'F'
  158.          @Echo To Return to the SAMPLE menu type EXIT
  159.          @Echo .
  160.          COMMAND
  161.  
  162.  
  163.       MarxMenu comes with TEDIT and MARXTSR manager and a few goodies
  164.       out of the DOS ToolBox.
  165.  
  166.       ==========================================
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.         Make Check            Computer Tyme            Order Form 2.7
  180.         Payable To:    411 North Sherman Suite 300
  181.                           Springfield Mo. 65802
  182.                      (417) 866-1222  (800) 548-5353
  183.  
  184.  
  185.         Please send me the Computer Tyme Software.
  186.  
  187.         =============================================================
  188.  
  189.         Name:        ________________________________________________
  190.  
  191.         Address:     ________________________________________________
  192.  
  193.         City/St/Zip: ________________________________________________
  194.  
  195.         Phone:       ________________________________________________
  196.  
  197.         Computer:    ________________________________________________
  198.  
  199.         Got From:    ________________________________________________
  200.  
  201.         Comments:    ________________________________________________
  202.  
  203.                      ________________________________________________
  204.  
  205.                      ________________________________________________
  206.  
  207.  
  208.         ___ Enclosed is $59.95 for The DOS ToolBox.
  209.  
  210.         ___ Enclosed is $59.95 for MarxMenu.
  211.  
  212.         ___ Enclosed is $99.95 for Both.
  213.  
  214.         ___ Enclosed is $49.95 for QEdit (from SemWare).
  215.  
  216.  
  217.         Network licenses are sold on a per fileserver basis.
  218.  
  219.         ___ Enclosed is $495 for The DOS ToolBox network version.
  220.  
  221.         ___ Enclosed is $495 for MarxMenu network version.
  222.  
  223.         ___ Enclosed is $750 for Both network version.
  224.  
  225.  
  226.         ___ Add $3.00 for Shipping and Handling.
  227.  
  228.         ___ I need 3 1/2 Inch Media.
  229.  
  230.  
  231.         =============================================================
  232.  
  233.